:root {
  
  --primary:  #152fa3;
  --secondary: rgb(247, 236, 236);
  --highlight: rgb(214, 21, 21);
}

/* Accesibility */

#skiptocontent a {
  padding: 6px;
  position: absolute;
  top: -40px;
  left: 0px;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: #bf1722;
  -webkit-transition: top 1s ease-out;
  transition: top 1s ease-out;
  z-index: 100;
}

#skiptocontent a:focus {
  position: absolute;
  left: 0px;
  top: 0px;
  outline-color: transparent;
  -webkit-transition: top 0.1s ease-in;
  transition: top 0.1s ease-in;
}

@media (prefers-reduced-motion: reduce) {
  #skiptocontent a {
    transition-duration: 0.001ms !important;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body{
  height: 100%;
  width: 100%;
  padding: 0;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: black;
  max-width: 2000px;
  margin: auto;
}



ul {
  list-style: none;
}

a {
  text-decoration: none;
  padding-right: 2rem;
}



.row {
  display: flex;
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

/*header*/

.header {
  background-color: var(--primary);
  padding: 12px 0;
  line-height: 1.5;
}

.header,
.header .nav {
  padding: 0 25px;
  z-index: 100;
}
.logo {
  line-height: 1;
}

.header {
  margin: 0;
  font-size: 1rem;
  font-weight: 600 ;
  border-bottom: solid 3px var(--highlight);
  background-color:  var(--secondary);
  text-transform: capitalize;
}

.header .nav ul li {
  display: inline-block;
  padding-bottom: .25rem;
  padding-left: 2rem;
  
}

.header .nav ul li a {
  display: flex;
  justify-content: baseline;
  font-size: 1.5rem;
  text-transform: capitalize;
  color: var(--primary);
  transition: all 1.5s ease;

}

.header .nav ul li a.active,
.header .nav ul li a:hover {
  color: var(--highlight);
}

.nav-toggler {
  height: 25px;
  width: 29px;
  background-color: var(--secondary);
  border-radius: 4px;
  cursor: pointer;
  border: none;
  display: none;
  margin-right: .5rem;
}

.nav-toggler:focus {
  outline: none;
  box-shadow: 0 0 15px var(--highlight));
}

.nav-toggler span {
  height: 2px;
  width: 20px;
  background-color: var(--primary);
  display: block;
  margin: auto;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggler.active span {
  background-color: transparent;
}

.nav-toggler span::before,
.nav-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.nav-toggler span::before {
  transform: translateY(-6px);
}

.nav-toggler.active span::before {
  transform: rotate(45deg);
}

.nav-toggler span::after {
  transform: translateY(6px);
}

.nav-toggler.active span::after {
  transform: rotate(135deg);
}

img{
  display: flex;
  float: left;
  width: 9rem;
  height: auto;
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.AboutEd{
  padding: 1rem;
  background-color: var(--secondary);
  color: var(--primary);
}

.WDIS{
  padding: 1rem;
  background-color:  var(--primary);
  color: var(--secondary);
  border: solid .25rem var(--highlight);
}



/* The hero image */
.hero-image {
/* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
background-image:  linear-gradient(rgba(9, 9, 227, 0.5), rgba(70, 24, 168, 0.5)),  url('../image/Perrine-Bridge-Twin-Falls.png');

/* Set a specific height */
height: 40%;

/* Position and center the image to scale nicely on all screens */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
border-top: solid .2rem var(--highlight);
border-bottom: solid .2rem var(--highlight);
}

/* Place text in the middle of the image */
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: var(--secondary);
font-weight: 400;
}
.hero-text  h1{
  font-size: clamp(1rem,  4vw, 25rem);
  overflow: auto; 
}

.hero-text  p{
  font-size: clamp(.25rem,  2vw, 6rem);
  
}


h2,
h3{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  padding: .75rem;
  font-weight: 500;
}

h2{
  font-size: 2rem;
}

h3{
  font-size: 1.75rem;
}

p{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding-bottom: .45rem;
  line-height: 1.25;
  font-size: 1.5rem;
  font-weight: 400;
}

  .card{
    border: solid .25rem var(--secondary); 
    padding: 2rem;
  }

  .card p{
    
  }
  

  .card  .LeftCenter{
    
      width: 4rem;
      height: auto;
      float: left;
      padding-right: 1rem;
      padding-bottom: 1rem;
      
  }

  footer{
    font-size: .75;
    font-weight: 600;
    text-align: center;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 1rem;
  }

  @media (max-width: 800px) {
    .nav-toggler {
      display: block;
    }
    .header .nav {
      width: 100%;
      padding: 0;
      max-height: 0px;
      overflow: hidden;
      visibility: hidden;
      transition: all 0.9s ease;
    }
    .header .nav.open {
      visibility: visible;
    }
    .header .nav ul {
      padding: 12px 15px 0;
      margin-top: 6px;
      border-top: 2px solid  var(--highlight);
    }
    .header .nav ul li {
      display: block;
      margin: 0;
    }
  }

